home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_10 / 1010065b < prev    next >
Encoding:
Text File  |  1995-11-01  |  344 b   |  17 lines

  1. int function_expecting_reference_to_int( int & input_value);
  2.  
  3. void calling_function(void)
  4.     {
  5.     int i;
  6.     function_expecting_reference_to_int(i);
  7.     }
  8.  
  9. int function_expecting_reference_to_int( int & input_value)
  10.     {
  11.     int local_variable;
  12.     /* Do something with it */
  13.     local_variable = input_value;
  14.     ...
  15.     }
  16.  
  17.